summaryrefslogtreecommitdiffstats
path: root/src/vpp-api/vom/acl_types.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/vpp-api/vom/acl_types.hpp')
-rw-r--r--src/vpp-api/vom/acl_types.hpp13
1 files changed, 3 insertions, 10 deletions
diff --git a/src/vpp-api/vom/acl_types.hpp b/src/vpp-api/vom/acl_types.hpp
index ccf0a1c0231..cf5bee3e478 100644
--- a/src/vpp-api/vom/acl_types.hpp
+++ b/src/vpp-api/vom/acl_types.hpp
@@ -26,16 +26,6 @@ namespace ACL {
struct action_t : public enum_base<action_t>
{
/**
- * Constructor
- */
- action_t(int v, const std::string s);
-
- /**
- * Destructor
- */
- ~action_t() = default;
-
- /**
* Permit and Reflexive
*/
const static action_t PERMITANDREFLEX;
@@ -60,6 +50,9 @@ struct action_t : public enum_base<action_t>
*which implements the connection tracking ....
*/
static const action_t& from_bool(bool b, uint8_t c);
+
+private:
+ action_t(int v, const std::string s);
};
};
};