libcryptosec
Asn1Object.h
Go to the documentation of this file.
1 #ifndef ASN1OBJECT_H_
2 #define ASN1OBJECT_H_
3 
4 #include "Asn1Type.h"
6 
7 class Asn1Object : public Asn1Type
8 {
9 public:
10  Asn1Object();
11  Asn1Object(ASN1_TYPE* type);
12  virtual ~Asn1Object();
13 
14  //nao faz copia
15  ObjectIdentifier* getValue() const throw();
16  void setValue(const ObjectIdentifier obj) throw();
17 };
18 
19 #endif /*ASN1OBJECT_H_*/
virtual ~Asn1Object()
Definition: Asn1Object.cpp:14
Definition: Asn1Type.h:11
Asn1Object()
Definition: Asn1Object.cpp:3
ObjectIdentifier * getValue() const
Definition: Asn1Object.cpp:18
Definition: ObjectIdentifier.h:11
Definition: Asn1Object.h:7
void setValue(const ObjectIdentifier obj)
Definition: Asn1Object.cpp:31