Rename signalIntegrity to ibis
We do not use camelCase in KiCad
This commit is contained in:
parent
4790257616
commit
20f4e62176
|
@ -29,7 +29,7 @@
|
|||
*/
|
||||
|
||||
|
||||
#include "ibisParser.h"
|
||||
#include "ibis_parser.h"
|
||||
#include <sstream>
|
||||
#include <iterator>
|
||||
#include <locale_io.h> // KiCad header
|
||||
|
@ -2528,4 +2528,4 @@ bool IbisParser::onNewLine()
|
|||
c = m_buffer[m_lineOffset + m_lineIndex++];
|
||||
}
|
||||
return status;
|
||||
}
|
||||
}
|
|
@ -30,7 +30,7 @@
|
|||
|
||||
|
||||
#include "kibis.h"
|
||||
#include "ibisParser.h"
|
||||
#include "ibis_parser.h"
|
||||
#include <sstream>
|
||||
|
||||
KIBIS_ANY::KIBIS_ANY( KIBIS* aTopLevel ) : IBIS_ANY( aTopLevel->m_reporter )
|
||||
|
@ -1235,4 +1235,4 @@ bool KIBIS_PIN::writeSpiceDiffDriver( std::string* aDest, std::string aName, KIB
|
|||
}
|
||||
|
||||
return status;
|
||||
}
|
||||
}
|
|
@ -32,7 +32,7 @@
|
|||
#ifndef KIBIS_H
|
||||
#define KIBIS_H
|
||||
|
||||
#include "ibisParser.h"
|
||||
#include "ibis_parser.h"
|
||||
|
||||
class KIBIS_PIN;
|
||||
class KIBIS_FILE;
|
||||
|
@ -373,4 +373,4 @@ public:
|
|||
KIBIS_PIN* getPin( std::string aPinNumber );
|
||||
};
|
||||
|
||||
#endif
|
||||
#endif
|
|
@ -48,5 +48,5 @@ add_subdirectory( unittests )
|
|||
add_subdirectory( tools )
|
||||
|
||||
if( KICAD_SIGNAL_INTEGRITY )
|
||||
add_subdirectory( signalIntegrity )
|
||||
add_subdirectory( ibis )
|
||||
endif()
|
||||
|
|
|
@ -29,8 +29,8 @@ add_definitions(-DBOOST_TEST_DYN_LINK -DPCBNEW -DDRC_PROTO -DTEST_APP_NO_MAIN)
|
|||
|
||||
add_executable( ibis_proto
|
||||
qaIbisParser.cpp
|
||||
../../pcbnew/signalIntegrity/ibisParser.cpp
|
||||
../../pcbnew/signalIntegrity/kibis.cpp
|
||||
${CMAKE_SOURCE_DIR}/pcbnew/ibis/ibis_parser.cpp
|
||||
${CMAKE_SOURCE_DIR}/pcbnew/ibis/kibis.cpp
|
||||
)
|
||||
|
||||
add_dependencies( ibis_proto pnsrouter pcbcommon ${PCBNEW_IO_LIBRARIES} )
|
|
@ -1,4 +1,4 @@
|
|||
#include "../../pcbnew/signalIntegrity/kibis.h"
|
||||
#include "../../pcbnew/ibis/kibis.h"
|
||||
#include <wx/textfile.h>
|
||||
|
||||
int main( void )
|
||||
|
@ -86,4 +86,4 @@ int main( void )
|
|||
std::cout << "Done" << std::endl;
|
||||
|
||||
return 1;
|
||||
}
|
||||
}
|
Loading…
Reference in New Issue