Blame view

morfeusz/Qualifiers.hpp 491 Bytes
Michał Lenart authored
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
/* 
 * File:   Qualifiers.hpp
 * Author: lennyn
 *
 * Created on April 4, 2014, 6:19 PM
 */

#ifndef QUALIFIERS_HPP
#define	QUALIFIERS_HPP

#include <vector>
#include <string>
#include <stdint.h>

class Qualifiers {
public:
    explicit Qualifiers(const unsigned char* ptr);
Michał Lenart authored
18
19
    std::vector<std::string> getQualifiers(int n) const;
    int getQualifiersNum() const;
Michał Lenart authored
20
21
22
23
24
25
26
    virtual ~Qualifiers();
private:
    std::vector< std::vector<std::string> > qualifiers;
};

#endif	/* QUALIFIERS_HPP */