~ubuntu-branches/ubuntu/maverick/codelite/maverick

« back to all changes in this revision

Viewing changes to sdk/codelite_indexer/network/named_pipe_client.h

  • Committer: Bazaar Package Importer
  • Author(s): Chow Loong Jin
  • Date: 2009-02-10 02:27:55 UTC
  • mfrom: (1.1.1 upstream)
  • Revision ID: james.westby@ubuntu.com-20090210022755-m5692nfc1t5uf1w9
Tags: 1.0.2759+dfsg-0ubuntu1
* New upstream release (LP: #327216).
* debian/patches/series, debian/patches/00_fix-ia64-build.patch:
  + Dropped, applied upstream already.
* debian/patches/02_fix-desktop.patch,
  debian/patches/03_fix-sh.patch:
  + Refreshed to patch cleanly.
* debian/rules:
  + Make get-orig-source honour UPSTREAM_VERSION if set.
* debian/ctags-le.1,
  debian/codelite_indexer.1,
  debian/codelite.manpages:
  + Dropped ctags-le manpage, since ctags-le was replaced by
    codelite_indexer.
  + Added codelite_indexer manpage.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
#ifndef named_pipe_client_h__
 
2
#define named_pipe_client_h__
 
3
 
 
4
#include "named_pipe.h"
 
5
 
 
6
class clNamedPipeClient : public clNamedPipe
 
7
{
 
8
public:
 
9
 
 
10
 
 
11
        clNamedPipeClient(const char* path);
 
12
        virtual ~clNamedPipeClient(void);
 
13
        virtual bool connect(long timeToConnect = -1);
 
14
        virtual void disconnect();
 
15
        virtual bool isConnected();
 
16
 
 
17
};
 
18
 
 
19
#endif // named_pipe_client_h__