X-Git-Url: https://git.stg.codes/stg.git/blobdiff_plain/76e975a593f0194edcbfbfc952eb391b2b8605cf..46b0747592074017ff0ea4b33d4a7194235886e5:/projects/stargazer/plugins/other/smux/value2os.h diff --git a/projects/stargazer/plugins/other/smux/value2os.h b/projects/stargazer/plugins/other/smux/value2os.h deleted file mode 100644 index 420616a1..00000000 --- a/projects/stargazer/plugins/other/smux/value2os.h +++ /dev/null @@ -1,20 +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; -} - -#endif