diff options
author | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2015-09-18 15:54:06 -0500 |
---|---|---|
committer | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2015-09-18 15:54:06 -0500 |
commit | 9ea67803526cec0439175b8dc2ee5f0e7b87bc89 (patch) | |
tree | ab6d82eb81e1794f99d4665a3b4f99db36a704bb /tdmlib/dmctl.h | |
parent | 46d9df235b2b98b057e2bc9719b7d3416bd5438f (diff) | |
download | tdebase-9ea67803.tar.gz tdebase-9ea67803.zip |
Stabilize cryptographic card login
Fix some coding style issues
Diffstat (limited to 'tdmlib/dmctl.h')
-rw-r--r-- | tdmlib/dmctl.h | 28 |
1 files changed, 17 insertions, 11 deletions
diff --git a/tdmlib/dmctl.h b/tdmlib/dmctl.h index 90928e2e3..e0cdc966c 100644 --- a/tdmlib/dmctl.h +++ b/tdmlib/dmctl.h @@ -39,27 +39,33 @@ public: DM(); ~DM(); - enum { Unknown, NoDM, NewTDM, OldTDM, GDM }; + enum { + Unknown, + NoDM, + NewTDM, + OldTDM, + GDM + }; bool canShutdown(); - void shutdown( TDEApplication::ShutdownType shutdownType, - TDEApplication::ShutdownMode shutdownMode, - const TQString &bootOption = TQString::null ); + void shutdown(TDEApplication::ShutdownType shutdownType, + TDEApplication::ShutdownMode shutdownMode, + const TQString &bootOption = TQString::null); - void setLock( bool on ); + void setLock(bool on); bool isSwitchable(); int numReserve(); void startReserve(); - bool localSessions( SessList &list ); - bool switchVT( int vt ); - void lockSwitchVT( int vt ); + bool localSessions(SessList &list); + bool switchVT(int vt); + void lockSwitchVT(int vt); int activeVT(); - bool bootOptions( TQStringList &opts, int &dflt, int &curr ); + bool bootOptions(TQStringList &opts, int &dflt, int &curr); - static TQString sess2Str( const SessEnt &se ); - static void sess2Str2( const SessEnt &se, TQString &user, TQString &loc ); + static TQString sess2Str(const SessEnt &se); + static void sess2Str2(const SessEnt &se, TQString &user, TQString &loc); int type(); |