libcryptosec
Asn1BitString.h
Go to the documentation of this file.
1 #ifndef ASN1BITSTRING_H_
2 #define ASN1BITSTRING_H_
3 
4 #include "Asn1Type.h"
5 
6 class Asn1BitString : public Asn1Type
7 {
8 public:
10  Asn1BitString(ASN1_TYPE* type);
11  virtual ~Asn1BitString();
12 
13  int getValue(int index) const throw();
14  void setValue(int index, int value) throw();
15 };
16 
17 #endif /*ASN1BITSTRING_H_*/
Definition: Asn1Type.h:11
virtual ~Asn1BitString()
Definition: Asn1BitString.cpp:13
Definition: Asn1BitString.h:6
Asn1BitString()
Definition: Asn1BitString.cpp:3
void setValue(int index, int value)
Definition: Asn1BitString.cpp:22
int getValue(int index) const
Definition: Asn1BitString.cpp:17