diff options
author | Remko Tronçon <git@el-tramo.be> | 2009-09-13 16:32:41 (GMT) |
---|---|---|
committer | Remko Tronçon <git@el-tramo.be> | 2009-09-14 10:42:18 (GMT) |
commit | dee73dcf69a7970da3834a4771a9881236a32631 (patch) | |
tree | 7a30919282abd1c8172a82c7a3d41e5bca11b2f9 | |
parent | 052e7c52424e0db0f622bd99ab02318b7cdf4d31 (diff) | |
download | swift-contrib-dee73dcf69a7970da3834a4771a9881236a32631.zip swift-contrib-dee73dcf69a7970da3834a4771a9881236a32631.tar.bz2 |
Remove some #ifndef guards.
-rw-r--r-- | Swiften/Queries/Requests/GetDiscoInfoRequest.h | 5 | ||||
-rw-r--r-- | Swiften/Queries/Requests/GetRosterRequest.h | 5 | ||||
-rw-r--r-- | Swiften/Queries/Requests/GetSecurityLabelsCatalogRequest.h | 5 |
3 files changed, 3 insertions, 12 deletions
diff --git a/Swiften/Queries/Requests/GetDiscoInfoRequest.h b/Swiften/Queries/Requests/GetDiscoInfoRequest.h index 386dd10..70f09ca 100644 --- a/Swiften/Queries/Requests/GetDiscoInfoRequest.h +++ b/Swiften/Queries/Requests/GetDiscoInfoRequest.h @@ -1,5 +1,4 @@ -#ifndef SWIFTEN_GetDiscoInfoRequest_H -#define SWIFTEN_GetDiscoInfoRequest_H +#pragma once #include "Swiften/Queries/GenericRequest.h" #include "Swiften/Elements/DiscoInfo.h" @@ -12,5 +11,3 @@ namespace Swift { } }; } - -#endif diff --git a/Swiften/Queries/Requests/GetRosterRequest.h b/Swiften/Queries/Requests/GetRosterRequest.h index 4ebb25e..cac1c12 100644 --- a/Swiften/Queries/Requests/GetRosterRequest.h +++ b/Swiften/Queries/Requests/GetRosterRequest.h @@ -1,5 +1,4 @@ -#ifndef SWIFTEN_GetRosterRequest_H -#define SWIFTEN_GetRosterRequest_H +#pragma once #include "Swiften/Queries/GenericRequest.h" #include "Swiften/Elements/RosterPayload.h" @@ -12,5 +11,3 @@ namespace Swift { } }; } - -#endif diff --git a/Swiften/Queries/Requests/GetSecurityLabelsCatalogRequest.h b/Swiften/Queries/Requests/GetSecurityLabelsCatalogRequest.h index 3971c9d..87b51ce 100644 --- a/Swiften/Queries/Requests/GetSecurityLabelsCatalogRequest.h +++ b/Swiften/Queries/Requests/GetSecurityLabelsCatalogRequest.h @@ -1,5 +1,4 @@ -#ifndef SWIFTEN_GetSecurityLabelsCatalogRequest_H -#define SWIFTEN_GetSecurityLabelsCatalogRequest_H +#pragma once #include "Swiften/Queries/GenericRequest.h" #include "Swiften/Elements/SecurityLabelsCatalog.h" @@ -15,5 +14,3 @@ namespace Swift { } }; } - -#endif |