-
Notifications
You must be signed in to change notification settings - Fork 10
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
535fe4f
commit a9e896d
Showing
6 changed files
with
136 additions
and
23 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,36 @@ | ||
%class FastSet, see Doxygen page for details | ||
%at https://gtsam.org/doxygen/ | ||
% | ||
%-------Constructors------- | ||
%FastSet() | ||
% | ||
classdef FastSet < handle | ||
properties | ||
ptr_FastSet = 0 | ||
end | ||
methods | ||
function obj = FastSet(varargin) | ||
if nargin == 2 && isa(varargin{1}, 'uint64') && varargin{1} == uint64(5139824614673773682) | ||
my_ptr = varargin{2}; | ||
class_wrapper(73, my_ptr); | ||
elseif nargin == 0 | ||
my_ptr = class_wrapper(74); | ||
else | ||
error('Arguments do not match any overload of FastSet constructor'); | ||
end | ||
obj.ptr_FastSet = my_ptr; | ||
end | ||
|
||
function delete(obj) | ||
class_wrapper(75, obj.ptr_FastSet); | ||
end | ||
|
||
function display(obj), obj.print(''); end | ||
%DISPLAY Calls print on the object | ||
function disp(obj), obj.display; end | ||
%DISP Calls print on the object | ||
end | ||
|
||
methods(Static = true) | ||
end | ||
end |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters