windows-nt/Source/XPSP1/NT/net/diagnostics/wmi/dgnet/command.h

13 lines
110 B
C
Raw Normal View History

2020-09-26 03:20:57 -05:00
// command.h
//
#pragma once
class CCommand
{
public:
virtual ~CCommand() {};
virtual void Go()=0;
};