Skip to content

Instantly share code, notes, and snippets.

@cad-san
Created March 2, 2014 06:39
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save cad-san/9302806 to your computer and use it in GitHub Desktop.
Save cad-san/9302806 to your computer and use it in GitHub Desktop.
PlantUmlMacroのサンプル
@startuml
!include "sequence_skin.h"
!include "sequence_macro.h"
participant main as A
participant cliant as B
participant server as C
func(A, B, singpleFunc( ) )
func_begin(A, B, longStepFunc( ) )
'{
local_func(B,localFunc( ) )
func(B, C, send_message( ) )
local_func_begin(B,longStepLocalFunc( ) )
'{
func(B, C, send_message( ) )
'}
local_func_end( B )
'}
func_end(A, B)
@enduml
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment