mirror of
https://github.com/spicetools/spicetools.git
synced 2026-03-22 02:14:22 -05:00
21 lines
379 B
C++
21 lines
379 B
C++
#pragma once
|
|
|
|
#include <vector>
|
|
#include "api/module.h"
|
|
#include "api/request.h"
|
|
|
|
namespace api::modules {
|
|
|
|
class Touch : public Module {
|
|
public:
|
|
Touch();
|
|
|
|
private:
|
|
|
|
// function definitions
|
|
void read(Request &req, Response &res);
|
|
void write(Request &req, Response &res);
|
|
void write_reset(Request &req, Response &res);
|
|
};
|
|
}
|