1 /* Icinga 2 | (c) 2012 Icinga GmbH | GPLv2+ */ 2 3 #ifndef OBJECT_PACKER 4 #define OBJECT_PACKER 5 6 #include "base/i2-base.hpp" 7 8 namespace icinga 9 { 10 11 class String; 12 class Value; 13 14 String PackObject(const Value& value); 15 16 } 17 18 #endif /* OBJECT_PACKER */ 19