KiCad PCB EDA Suite
Loading...
Searching...
No Matches
sch_io_altium_lib_cache.h
Go to the documentation of this file.
1/*
2 * This program source code file is part of KiCad, a free EDA CAD application.
3 *
4 * Copyright (C) 2023 KiCad Developers, see AUTHORS.txt for contributors.
5 *
6 *
7 * This program is free software; you can redistribute it and/or
8 * modify it under the terms of the GNU General Public License
9 * as published by the Free Software Foundation; either version 3
10 * of the License, or (at your option) any later version.
11 *
12 * This program is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 * GNU General Public License for more details.
16 *
17 * You should have received a copy of the GNU General Public License along
18 * with this program. If not, see <http://www.gnu.org/licenses/>.
19 */
20
21#ifndef SCH_IO_ALTIUM_LIB_CACHE_H_
22#define SCH_IO_ALTIUM_LIB_CACHE_H_
23
25
28
33{
34public:
35 SCH_IO_ALTIUM_LIB_CACHE( const wxString& aLibraryPath );
37
38 void Load() override;
39
40private:
42
43};
44
45#endif // SCH_IO_ALTIUM_LIB_CACHE_H_
A LINE_READER that reads from an open file.
Definition: richio.h:185
A cache assistant for Altium symbol libraries.
SCH_IO_ALTIUM_LIB_CACHE(const wxString &aLibraryPath)
virtual ~SCH_IO_ALTIUM_LIB_CACHE()
void Load() override
A SCH_IO derivation for loading schematic files using the new s-expression file format.
A base cache assistant implementation for the symbol library portion of the SCH_IO API.