Skip to content

Add support for collecting classes declared with typedef or using in C++ #80

@aalramadan

Description

@aalramadan

Right now, Stereocode collects class declarations in standard forms (e.g., class MyClass { ... };). However, in C++ it is also possible to declare classes via typedef or using aliases:

typedef class : public Base {
public:
    int value;
    int getValue() { return value; }
} TypedefClass;

using UsingClass = class : public Base {
public:
    int value;
    int getValue() { return value; }
};

These are class declarations, and not objects (like in the anonymous class case). Stereocode currently does not collect them, which it should.

Metadata

Metadata

Assignees

No one assigned

    Labels

    enhancementNew feature or request

    Type

    No type

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions