]> git.stg.codes - ssmd.git/blobdiff - include/acl.h
Removed GTS string.
[ssmd.git] / include / acl.h
index 468671f00c0af9762e61fb95060046aa3267af74..cee7cb3517305c90b168a2b577407fb2bf4b46a1 100644 (file)
@@ -1,11 +1,12 @@
-#ifndef __GTS_ACL_H__
-#define __GTS_ACL_H__
+#ifndef __SSMD_ACL_H__
+#define __SSMD_ACL_H__
 
 #include <string>
+#include <ostream>
 
 class Pdu;
 
-namespace GTS {
+namespace SSMD {
 
 class ACL {
     public:
@@ -43,8 +44,12 @@ class ACL {
         bool _isUpload;
 
         std::string getSuffix() const;
+
+        friend std::ostream & operator<<(std::ostream & stream, const ACL & acl);
 };
 
+std::ostream & operator<<(std::ostream & stream, const SSMD::ACL & acl);
+
 }
 
 #endif