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