/** * C++ Command - drift cpp * * Analyze C++ projects: classes, memory, templates, virtual functions. * * @requirements C++ Language Support * @license Apache-2.0 */ import { Command } from 'commander'; export interface CppOptions { /** Output format */ format?: 'text' | 'json'; /** Enable verbose output */ verbose?: boolean; /** Filter by framework */ framework?: string; } /** * Create the C++ command */ export declare function createCppCommand(): Command; //# sourceMappingURL=cpp.d.ts.map