Skip to content

Commit

Permalink
renamed SHAREDLIB_EXPORT to TINYORM_EXPORT
Browse files Browse the repository at this point in the history
  • Loading branch information
silverqx committed Jul 3, 2024
1 parent 02c5d23 commit c6e5f08
Show file tree
Hide file tree
Showing 66 changed files with 398 additions and 398 deletions.
2 changes: 1 addition & 1 deletion NOTES.txt
Original file line number Diff line number Diff line change
Expand Up @@ -2100,7 +2100,7 @@ namespace Orm
{

/*! The EntityManager is the central access point to ORM functionality. */
class SHAREDLIB_EXPORT EntityManager final
class TINYORM_EXPORT EntityManager final
{
Q_DISABLE_COPY(EntityManager)

Expand Down
2 changes: 1 addition & 1 deletion include/orm/basegrammar.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ namespace Query
std::same_as<T, QList<QVariant>>;

/*! Base class for the database grammar. */
class SHAREDLIB_EXPORT BaseGrammar
class TINYORM_EXPORT BaseGrammar
{
Q_DISABLE_COPY_MOVE(BaseGrammar)

Expand Down
2 changes: 1 addition & 1 deletion include/orm/concerns/countsqueries.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ namespace Concerns
{

/*! Counts the number of executed queries and the elapsed time of queries. */
class SHAREDLIB_EXPORT CountsQueries
class TINYORM_EXPORT CountsQueries
{
Q_DISABLE_COPY_MOVE(CountsQueries)

Expand Down
2 changes: 1 addition & 1 deletion include/orm/concerns/detectslostconnections.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ namespace Orm::Concerns
{

/*! Detect lost connection by passed exception message. */
class SHAREDLIB_EXPORT DetectsLostConnections
class TINYORM_EXPORT DetectsLostConnections
{
Q_DISABLE_COPY_MOVE(DetectsLostConnections)

Expand Down
2 changes: 1 addition & 1 deletion include/orm/concerns/explainqueries.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ namespace Concerns
{

/*! Counts the number of executed queries and the elapsed time of queries. */
class SHAREDLIB_EXPORT ExplainQueries
class TINYORM_EXPORT ExplainQueries
{
public:
/*! Default constructor. */
Expand Down
2 changes: 1 addition & 1 deletion include/orm/concerns/hasconnectionresolver.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ namespace Concerns
{

/*! Connection resolver. */
class SHAREDLIB_EXPORT HasConnectionResolver
class TINYORM_EXPORT HasConnectionResolver
{
public:
/*! Get the connection resolver instance. */
Expand Down
2 changes: 1 addition & 1 deletion include/orm/concerns/logsqueries.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ namespace Concerns
{

/*! Logs executed queries to the console. */
class SHAREDLIB_EXPORT LogsQueries
class TINYORM_EXPORT LogsQueries
{
Q_DISABLE_COPY_MOVE(LogsQueries)

Expand Down
2 changes: 1 addition & 1 deletion include/orm/concerns/managestransactions.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ namespace Concerns
// TODO next transaction method with callback silverqx
// TODO rewrite transactions, look at beginTransaction(), commit(), ... whats up, you will see immediately 😎 silverqx
/*! Manages database transactions. */
class SHAREDLIB_EXPORT ManagesTransactions
class TINYORM_EXPORT ManagesTransactions
{
Q_DISABLE_COPY_MOVE(ManagesTransactions)

Expand Down
2 changes: 1 addition & 1 deletion include/orm/concerns/parsessearchpath.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ namespace Orm::Concerns
{

/*! Parse the PostgreSQL search_path configuration value into the vector. */
class SHAREDLIB_EXPORT ParsesSearchPath
class TINYORM_EXPORT ParsesSearchPath
{
Q_DISABLE_COPY_MOVE(ParsesSearchPath)

Expand Down
Loading

0 comments on commit c6e5f08

Please sign in to comment.