-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcalls.hpp
32 lines (26 loc) · 884 Bytes
/
calls.hpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
// SPDX-License-Identifier: GPL-3.0-only
/**
* @file calls.hpp
*
* @copyright Copyright (C) 2021-2024 srcML, LLC. (www.srcML.org)
*
* This file is part of the Stereocode application.
*/
#ifndef CALLS_HPP
#define CALLS_HPP
#include <string>
#include <set>
class calls {
public:
const std::string& getName () const { return name; }
const std::string& getArgumentList () const { return argumentList; }
const std::string& getSignature () const { return signature; }
void setName (const std::string& n) { name = n; }
void setArgumentList (const std::string& l) { argumentList = l; }
void setSignature (const std::string& s) { signature = s; }
private:
std::string name;
std::string argumentList;
std::string signature;
};
#endif