#ifndef MYCLASS_H // Include guard
#define MYCLASS_H

#include <vector>

struct name {
    // 構造体の定義
};

class MyClass {
private:
    std::vector<name> bbb; // プライベートの構造体配列

public:
    // ゲットする関数の宣言
    const std::vector<name>& getBbb() const;

    // セットする関数の宣言
    void setBbb(const std::vector<name>& data);
};

#endif // MYCLASS_H