Changeset 390faae in nscp for trunk/NSClient++.h


Ignore:
Timestamp:
11/04/07 17:35:28 (6 years ago)
Author:
Michael Medin <michael@…>
Children:
89ac56a
Parents:
86fc50e
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
  • trunk/NSClient++.h

    r86fc50e r390faae  
    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.