diff options
author | Teddy Wing | 2021-02-27 19:12:07 +0100 |
---|---|---|
committer | Teddy Wing | 2021-02-27 19:12:07 +0100 |
commit | 4792097ca56f278344f18a0a78aaca1278fd146e (patch) | |
tree | 8c48974c3a68b955df597a7a5eaa8b7a3afdefa6 /l/src/call-id.lisp | |
parent | 5e0f58d30c08bd294539ede86757970d46cab4f6 (diff) | |
download | extreload-4792097ca56f278344f18a0a78aaca1278fd146e.tar.bz2 |
Move everything from `l/` into the project root
This is the final project. Now that we got rid of the web extension and
native host code, we can move the Lisp code to the root.
Diffstat (limited to 'l/src/call-id.lisp')
-rw-r--r-- | l/src/call-id.lisp | 15 |
1 files changed, 0 insertions, 15 deletions
diff --git a/l/src/call-id.lisp b/l/src/call-id.lisp deleted file mode 100644 index a21e6ab..0000000 --- a/l/src/call-id.lisp +++ /dev/null @@ -1,15 +0,0 @@ -(in-package :extreload) - -(defclass call-id () - ((id - :initform 0 - :reader id - :documentation "Current call ID.")) - - (:documentation "An incrementing identifier.")) - -(defgeneric next-call-id (call-id) - (:documentation "Increment the call ID and return the result.")) - -(defmethod next-call-id ((call-id call-id)) - (incf (slot-value call-id 'id))) |