12 lines
139 B
C++
12 lines
139 B
C++
![]() |
#pragma once
|
||
|
|
||
|
#include <vector>
|
||
|
#include <string>
|
||
|
|
||
|
class Clippy {
|
||
|
public:
|
||
|
void Run(const std::vector<std::string>& args);
|
||
|
|
||
|
private:
|
||
|
};
|