X-Git-Url: https://git.stg.codes/stg.git/blobdiff_plain/4271ab433cd55bbd2612292bcf39e4dc3d7274f1..0907aa4037b12b6b88ee24495d4577a064d4f8db:/stargazer/plugins/other/smux/value2os.h diff --git a/stargazer/plugins/other/smux/value2os.h b/stargazer/plugins/other/smux/value2os.h deleted file mode 100644 index c069affd..00000000 --- a/stargazer/plugins/other/smux/value2os.h +++ /dev/null @@ -1,64 +0,0 @@ -#ifndef __VALUE_2_OS_H__ -#define __VALUE_2_OS_H__ - -#include "stg/ObjectSyntax.h" - -template -bool ValueToOS(const T & value, ObjectSyntax * objectSyntax); - -template <> -inline -bool ValueToOS(const int & value, ObjectSyntax * objectSyntax) -{ -objectSyntax->present = ObjectSyntax_PR_simple; -SimpleSyntax_t * simpleSyntax = &objectSyntax->choice.simple; -simpleSyntax->present = SimpleSyntax_PR_number; -asn_long2INTEGER(&simpleSyntax->choice.number, value); -return true; -} - -template <> -inline -bool ValueToOS(const unsigned int & value, ObjectSyntax * objectSyntax) -{ -objectSyntax->present = ObjectSyntax_PR_simple; -SimpleSyntax_t * simpleSyntax = &objectSyntax->choice.simple; -simpleSyntax->present = SimpleSyntax_PR_number; -asn_long2INTEGER(&simpleSyntax->choice.number, value); -return true; -} - -template <> -inline -bool ValueToOS(const long & value, ObjectSyntax * objectSyntax) -{ -objectSyntax->present = ObjectSyntax_PR_simple; -SimpleSyntax_t * simpleSyntax = &objectSyntax->choice.simple; -simpleSyntax->present = SimpleSyntax_PR_number; -asn_long2INTEGER(&simpleSyntax->choice.number, value); -return true; -} - -template <> -inline -bool ValueToOS(const unsigned long & value, ObjectSyntax * objectSyntax) -{ -objectSyntax->present = ObjectSyntax_PR_simple; -SimpleSyntax_t * simpleSyntax = &objectSyntax->choice.simple; -simpleSyntax->present = SimpleSyntax_PR_number; -asn_long2INTEGER(&simpleSyntax->choice.number, value); -return true; -} - -template <> -inline -bool ValueToOS(const std::string & value, ObjectSyntax * objectSyntax) -{ -objectSyntax->present = ObjectSyntax_PR_simple; -SimpleSyntax_t * simpleSyntax = &objectSyntax->choice.simple; -simpleSyntax->present = SimpleSyntax_PR_string; -OCTET_STRING_fromBuf(&simpleSyntax->choice.string, value.c_str(), static_cast(value.length())); -return true; -} - -#endif