Skip to content

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

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.

Activity

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

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