aboutsummaryrefslogtreecommitdiffstats
path: root/al/eax_eax_call.h
diff options
context:
space:
mode:
authorChris Robinson <[email protected]>2022-02-05 19:57:46 -0800
committerChris Robinson <[email protected]>2022-02-05 19:57:46 -0800
commit75d9044c3904b1fb0b7864c7d3d9b532000899bb (patch)
treed9d21de80fd3f13a2868440a5f8d32b489895c5d /al/eax_eax_call.h
parent9ba489360c20e5e0129e0ab278191ec7c8fda099 (diff)
Inline some simple getters
Diffstat (limited to 'al/eax_eax_call.h')
-rw-r--r--al/eax_eax_call.h22
1 files changed, 7 insertions, 15 deletions
diff --git a/al/eax_eax_call.h b/al/eax_eax_call.h
index ec632b7d..25b5e64a 100644
--- a/al/eax_eax_call.h
+++ b/al/eax_eax_call.h
@@ -32,21 +32,13 @@ public:
ALvoid* property_buffer,
ALuint property_size);
-
- bool is_get() const noexcept;
-
- bool is_deferred() const noexcept;
-
- int get_version() const noexcept;
-
- EaxEaxCallPropertySetId get_property_set_id() const noexcept;
-
- ALuint get_property_id() const noexcept;
-
- ALuint get_property_al_name() const noexcept;
-
- EaxFxSlotIndex get_fx_slot_index() const noexcept;
-
+ bool is_get() const noexcept { return is_get_; }
+ bool is_deferred() const noexcept { return is_deferred_; }
+ int get_version() const noexcept { return version_; }
+ EaxEaxCallPropertySetId get_property_set_id() const noexcept { return property_set_id_; }
+ ALuint get_property_id() const noexcept { return property_id_; }
+ ALuint get_property_al_name() const noexcept { return property_source_id_; }
+ EaxFxSlotIndex get_fx_slot_index() const noexcept { return fx_slot_index_; }
template<
typename TException,