libcryptosec
Asn1Boolean.h
Go to the documentation of this file.
1 #ifndef ASN1BOOLEAN_H_
2 #define ASN1BOOLEAN_H_
3 
4 #include "Asn1Type.h"
5 
6 class Asn1Boolean : public Asn1Type
7 {
8 public:
9  Asn1Boolean();
10  Asn1Boolean(ASN1_TYPE* asn1type);
11  virtual ~Asn1Boolean();
12 
13  bool getValue() const throw();
14  void setValue(bool b) throw();
15 
16 protected:
17  ASN1_BOOLEAN asn1Boolean;
18 };
19 
20 #endif /*ASN1BOOLEAN_H_*/
Definition: Asn1Type.h:11
virtual ~Asn1Boolean()
Definition: Asn1Boolean.cpp:13
bool getValue() const
Definition: Asn1Boolean.cpp:17
void setValue(bool b)
Definition: Asn1Boolean.cpp:22
Definition: Asn1Boolean.h:6
ASN1_BOOLEAN asn1Boolean
Definition: Asn1Boolean.h:17
Asn1Boolean()
Definition: Asn1Boolean.cpp:3