]> de.git.xonotic.org Git - xonotic/netradiant.git/blobdiff - contrib/bobtoolz/DEPair.h
Revert partially (auto) "reformat code! now the code is only ugly on the *inside*"
[xonotic/netradiant.git] / contrib / bobtoolz / DEPair.h
index f3f0cebb3b8da6bc11db445c7f87a148f149c1ee..3b5ca3aeea81f0c6070617261823dc92f502ad69 100644 (file)
 
 #include "str.h"
 
-class DEPair {
+class DEPair
+{
 public:
-    DEPair();
+DEPair();
+virtual ~DEPair();
 
-    virtual ~DEPair();
+void Build( const char* pKey, const char* pValue );
 
-    void Build(const char *pKey, const char *pValue);
-
-    Str key;
-    Str value;
+Str key;
+Str value;
 };
 
 //typedef CList<DEPair*, DEPair*> DEPairList;