X-Git-Url: https://git.stg.codes/ssmd.git/blobdiff_plain/ae26516a8828d54ab7c0e0bca92031a54a15ed62..HEAD:/include/acl.h diff --git a/include/acl.h b/include/acl.h index 468671f..cee7cb3 100644 --- a/include/acl.h +++ b/include/acl.h @@ -1,11 +1,12 @@ -#ifndef __GTS_ACL_H__ -#define __GTS_ACL_H__ +#ifndef __SSMD_ACL_H__ +#define __SSMD_ACL_H__ #include +#include 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