Changeset b749b8d in nscp for NSClient++.h


Ignore:
Timestamp:
11/04/07 17:35:28 (6 years ago)
Author:
Michael Medin <michael@…>
Branches:
master, 0.4.0, 0.4.1, 0.4.2, stable
Children:
22d2739
Parents:
12edcec
Message:

2007-11-04 MickeM

  • Rewritten WMI handling as well as checks so things should be more usefull now (cf. the wiki page for details)
File:
1 edited

Legend:

Unmodified
Added
Removed
  • NSClient++.h

    r12edcec rb749b8d  
    6666  MutexHandler messageMutex; 
    6767  MutexRW  m_mutexRW; 
     68  bool debug_; 
    6869 
    6970public: 
    7071  // c-tor, d-tor 
    71   NSClientT(void) {} 
     72  NSClientT(void) : debug_(false) {} 
    7273  virtual ~NSClientT(void) {} 
     74  void enableDebug(bool debug = true) { 
     75    debug_ = debug; 
     76  } 
    7377 
    7478  // Service helper functions 
    75   bool InitiateService(void); 
     79  bool InitiateService(); 
    7680  void TerminateService(void); 
    7781  static void WINAPI service_main_dispatch(DWORD dwArgc, LPTSTR *lpszArgv); 
Note: See TracChangeset for help on using the changeset viewer.