From d1ac46b27711f17fa6995f91c91010e9c2528468 Mon Sep 17 00:00:00 2001
From: Olivier BICHLER <olivier.bichler@cea.fr>
Date: Sun, 2 Mar 2025 15:31:16 +0000
Subject: [PATCH] Removed unused files

---
 include/aidge/utilsParsing/AstNode.hpp      | 69 ------------------
 include/aidge/utilsParsing/ParsingToken.hpp | 79 ---------------------
 2 files changed, 148 deletions(-)
 delete mode 100644 include/aidge/utilsParsing/AstNode.hpp
 delete mode 100644 include/aidge/utilsParsing/ParsingToken.hpp

diff --git a/include/aidge/utilsParsing/AstNode.hpp b/include/aidge/utilsParsing/AstNode.hpp
deleted file mode 100644
index bf4f73236..000000000
--- a/include/aidge/utilsParsing/AstNode.hpp
+++ /dev/null
@@ -1,69 +0,0 @@
-
-
-#ifndef AIDGE_CORE_AST_NODE_H_
-#define AIDGE_CORE_AST_NODE_H_
-
-#include <string>
-#include <type_traits>
-#include <vector>
-#include <memory>
-#include "aidge/utilsParsing/ParsingToken.hpp"
-
-namespace Aidge{
-
-    template <typename EnumType>
-    class AstNode: public std::enable_shared_from_this<AstNode<EnumType>>
-    {
-        static_assert(std::is_enum<EnumType>::value, "AstNode EnumType must be an enum type");
-        public:
-        AstNode(std::shared_ptr<ParsingToken<EnumType>> token,std::vector<std::shared_ptr<AstNode<EnumType>>> child ={}):mToken(token),mChild(child){}
-        /**
-         * @brief get the type of the token
-         * @return the type
-         */
-        EnumType getType() const{
-            return mToken->getType();
-        }
-
-        /**
-         * @brief get the lexeme of the token
-         * @return the lexeme
-         */
-        std::string getValue() const{
-            return mToken->getLexeme();
-        }
-        /**
-         * @brief get the child of the node
-         * @return child
-         */
-        const std::vector<std::shared_ptr<AstNode>>& getChilds() const {
-            return mChild;
-        }
-        /**
-         * @brief test if the node is a leaf in the tree
-         * @return true if a leaf
-         */
-        bool isLeaf() const {
-            return mChild.size() == 0;
-        }
-
-        /**
-         * @brief get the number of child
-         * @return the number of child
-         */
-        std::size_t nbChild() const{
-            return mChild.size();
-        }
-        private:
-        /**
-         * @brief the token of the node
-         */
-        const std::shared_ptr<ParsingToken<EnumType>> mToken;
-        /**
-         * @brief list of child
-         */
-        const std::vector<std::shared_ptr<AstNode>> mChild;
-    };
-}
-
-#endif //AIDGE_CORE_AST_NODE_H_
diff --git a/include/aidge/utilsParsing/ParsingToken.hpp b/include/aidge/utilsParsing/ParsingToken.hpp
deleted file mode 100644
index 3781fcbf1..000000000
--- a/include/aidge/utilsParsing/ParsingToken.hpp
+++ /dev/null
@@ -1,79 +0,0 @@
-/********************************************************************************
- * Copyright (c) 2023 CEA-List
- *
- * This program and the accompanying materials are made available under the
- * terms of the Eclipse Public License 2.0 which is available at
- * http://www.eclipse.org/legal/epl-2.0.
- *
- * SPDX-License-Identifier: EPL-2.0
- *
- ********************************************************************************/
-
-#ifndef AIDGE_CORE_PARSING_TOKEN_H_
-#define AIDGE_CORE_PARSING_TOKEN_H_
-
-#include <string>
-#include <type_traits>
-
-#include <fmt/format.h>
-
-namespace Aidge {
-
-template <typename EnumType>
-class ParsingToken: public std::enable_shared_from_this<ParsingToken<EnumType>>
-{
-    static_assert(std::is_enum<EnumType>::value, "ParsingToken EnumType must be an enum type");
-public:
-    /**
-     * @brief Token container
-     * @param type one of the token type
-     * @param lexeme String representing additional information of the token
-     */
-    ParsingToken(const EnumType type , const std::string& lexeme )
-        : mLexeme(lexeme), mType(type){}
-
-    /**
-     * @brief get the lexeme
-     * @return std::string
-     */
-    const std::string getLexeme(void) const noexcept {
-        return mLexeme;
-    }
-
-    /**
-     * @brief get the token type
-     *
-     * @return ParsingToken
-     */
-    const EnumType getType(void) const noexcept {
-        return mType;
-    }
-
-    /**
-     * @brief copy the token
-     * @return deep copy of the token
-     */
-    std::shared_ptr<ParsingToken> copy() const noexcept {
-        return std::make_shared<ParsingToken<EnumType>>(mType, mLexeme);
-    }
-
-    //TODO
-    std::string rep(void) const { return fmt::format(" Token ({})\n", mLexeme); }
-
-private:
-    /**
-     * @brief additional information of the token
-     */
-    const std::string mLexeme;
-
-    /**
-     * @brief type of the token
-     * @see ConditionalTokenTypes
-     */
-    const EnumType mType;
-
-};
-
-}  // namespace Aidge
-
-#endif //AIDGE_CORE_PARSING_TOKEN_H_
-- 
GitLab