diff options
Diffstat (limited to 'src/dinfo.h')
-rw-r--r-- | src/dinfo.h | 25 |
1 files changed, 12 insertions, 13 deletions
diff --git a/src/dinfo.h b/src/dinfo.h index 129bf62..ae8c0c2 100644 --- a/src/dinfo.h +++ b/src/dinfo.h @@ -1,6 +1,6 @@ /*************************************************************************** - * Copyright (C) 2007 by bisiek * - * [email protected] * + * Copyright (C) 2007 by bisiek * + * [email protected] * * * * This program is free software; you can redistribute it and/or modify * * it under the terms of the GNU General Public License as published by * @@ -24,19 +24,18 @@ /** @author bisiek <[email protected]> */ -class dInfo{ +class dInfo { public: - dInfo(); - ~dInfo(); - bool gBool(); - void sBool(bool nVal); - int gInt(); - void sInt(int nVal); - void inc(int val); + dInfo(); + ~dInfo(); + bool gBool(); + void sBool(bool nVal); + int gInt(); + void sInt(int nVal); + void inc(int val); private: - bool mBool; - int mInt; - + bool mBool; + int mInt; }; #endif |