Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/opentimelineio/effect.h
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ class OTIO_API_TYPE Effect : public SerializableObjectWithMetadata
/// @param name The name of the effect.
/// @param metadata The metadata for the clip.
/// @param enabled Whether the effect is enabled.
Effect(
OTIO_API Effect(
std::string const& name = std::string(),
std::string const& effect_name = std::string(),
AnyDictionary const& metadata = AnyDictionary(),
Expand Down
8 changes: 4 additions & 4 deletions src/opentimelineio/errorStatus.h
Original file line number Diff line number Diff line change
Expand Up @@ -49,21 +49,21 @@ struct OTIO_API_TYPE ErrorStatus
};

/// @brief Construct a new status with no error.
ErrorStatus()
OTIO_API ErrorStatus()
: outcome(OK)
, object_details(nullptr)
{}

/// @brief Construct a new status with the given outcome.
ErrorStatus(Outcome in_outcome)
OTIO_API ErrorStatus(Outcome in_outcome)
: outcome(in_outcome)
, details(outcome_to_string(in_outcome))
, full_description(details)
, object_details(nullptr)
{}

/// @brief Construct a new status with the given outcome, details, and object.
ErrorStatus(
OTIO_API ErrorStatus(
Outcome in_outcome,
std::string const& in_details,
SerializableObject const* object = nullptr)
Expand All @@ -74,7 +74,7 @@ struct OTIO_API_TYPE ErrorStatus
{}

/// @brief Copy operator.
ErrorStatus& operator=(Outcome in_outcome)
OTIO_API ErrorStatus& operator=(Outcome in_outcome)
{
*this = ErrorStatus(in_outcome);
return *this;
Expand Down
2 changes: 1 addition & 1 deletion src/opentimelineio/freezeFrame.h
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ class OTIO_API_TYPE FreezeFrame : public LinearTimeWarp
///
/// @param name The name of the time effect.
/// @param metadata The metadata for the time effect.
FreezeFrame(
OTIO_API FreezeFrame(
std::string const& name = std::string(),
AnyDictionary const& metadata = AnyDictionary());

Expand Down
1 change: 1 addition & 0 deletions src/opentimelineio/gap.h
Original file line number Diff line number Diff line change
Expand Up @@ -47,6 +47,7 @@ class OTIO_API_TYPE Gap : public Item
/// @param markers The list of markers for the gap. Note that the
/// the gap keeps a retainer to each marker.
/// @param metadata The metadata for the gap.
OTIO_API
Gap(RationalTime duration,
std::string const& name = std::string(),
std::vector<Effect*> const& effects = std::vector<Effect*>(),
Expand Down
2 changes: 1 addition & 1 deletion src/opentimelineio/generatorReference.h
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ class OTIO_API_TYPE GeneratorReference final : public MediaReference
/// @param parameters The parameters used to configure the generator.
/// @param metadata The metadata for the generator.
/// @param available_image_bounds The spatial bounds of the generator.
GeneratorReference(
OTIO_API GeneratorReference(
std::string const& name = std::string(),
std::string const& generator_kind = std::string(),
std::optional<TimeRange> const& available_range = std::nullopt,
Expand Down
2 changes: 1 addition & 1 deletion src/opentimelineio/imageSequenceReference.h
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ class OTIO_API_TYPE ImageSequenceReference final : public MediaReference
/// @param available_range The available range of the image sequence.
/// @param metadata The metadata for the image sequence.
/// @param available_image_bounds The spatial bounds of the image sequence.
ImageSequenceReference(
OTIO_API ImageSequenceReference(
std::string const& target_url_base = std::string(),
std::string const& name_prefix = std::string(),
std::string const& name_suffix = std::string(),
Expand Down
2 changes: 1 addition & 1 deletion src/opentimelineio/missingReference.h
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ class OTIO_API_TYPE MissingReference final : public MediaReference
/// @param available_range The available range of the missing reference.
/// @param metadata The metadata for the missing reference.
/// @param available_image_bounds The spatial bounds for the missing reference.
MissingReference(
OTIO_API MissingReference(
std::string const& name = std::string(),
std::optional<TimeRange> const& available_range = std::nullopt,
AnyDictionary const& metadata = AnyDictionary(),
Expand Down
2 changes: 1 addition & 1 deletion src/opentimelineio/timeEffect.h
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ class OTIO_API_TYPE TimeEffect : public Effect
/// @param name The name of the object.
/// @param effect_name The time effect name.
/// @param metadata The metadata for the time effect.
TimeEffect(
OTIO_API TimeEffect(
std::string const& name = std::string(),
std::string const& effect_name = std::string(),
AnyDictionary const& metadata = AnyDictionary());
Expand Down
Loading