Classdesc 3.44
signature.h
1/*
2 @copyright Russell Standish 2019
3 @author Russell Standish
4 This file is part of Classdesc
5
6 Open source licensed under the MIT license. See LICENSE for details.
7*/
8
9#ifndef CLASSDESC_SIGNATURE_H
10#define CLASSDESC_SIGNATURE_H
11#include <string>
12#include <vector>
13namespace classdesc
14{
17 struct Signature
18 {
19 std::string ret;
20 std::vector<std::string> args;
21 bool operator==(const Signature& s) const {return args==s.args;}
22 };
23}
24
25#endif
Contains definitions related to classdesc functionality.
Definition signature.h:18